home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000126_news@newsmaster….columbia.edu _Fri Oct 17 10:16:10 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA21260
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 17 Oct 1997 10:16:09 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA15940
  7.     for kermit.misc@watsun; Fri, 17 Oct 1997 10:16:08 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: msdos kermit and external protocols
  12. Date: 17 Oct 1997 14:16:06 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <627rv6$aoj$1@apakabar.cc.columbia.edu>
  16. References: <627dad$snq@winter.news.erols.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7905
  19.  
  20. In article <627dad$snq@winter.news.erols.com>, kifox <kifox@hotmail.com> wrote:
  21. : Was wondering if it would be possible for the msdos version of kermit to 
  22. : include support for external protocols like zmodem,ymodem,hydra ect in the 
  23. : same fashion that most dos-based com programs do. Some sites you can telnet 
  24. : to don't support the kermit protocol for file transfers.
  25. Not for Telnet connections, since the TCP/IP stack is implemented in MS-DOS
  26. Kermit itself.  If it started another program to execute the external
  27. protocol, the TCP/IP stack would no longer be active.
  28.  
  29. We can do this in UNIX because the operating system permits.  DOS is not
  30. an operating system in the conventional sense -- it does not support multiple
  31. processes, networking at the kernel i/o level, etc.
  32.  
  33. Even if it worked, it might not work since Zmodem implementations quite often
  34. fail to upload or download or both over Telnet connections because of
  35. transparency issues.
  36.  
  37. There is no reason at all why Kermit protocol can't be available on every
  38. host, service, BBS, or other thing that you can Telnet to.  When it's not,
  39. simply point the provider to the Kermit website:
  40.  
  41.   http://www.columbia.edu/kermit/
  42.  
  43. Of course you can use DSZ or whatever as an external protocol on a serial
  44. connection; people have been doing it for years.
  45.  
  46. - Frank